home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / misc / avmNfax1_33.lha / AVMSuite / rexx / stdhead.avm < prev    next >
Text File  |  1994-06-24  |  518b  |  20 lines

  1. /* we want results! Otherwise, we wouldn't get anything from RESULT */
  2. options results
  3.  
  4. /* Need to make sure that stdtail.avm is also included */
  5. signal on halt
  6. signal on novalue
  7. signal on syntax
  8. signal on break_c
  9.  
  10. /* needed for some of the functions we use */
  11. call addlib("rexxsupport.library", 0, -30, 0)
  12.  
  13. /* a higher than normal priority since calls are important to us :) */
  14. call pragma('priority', 1)
  15.  
  16. /* ensure that commands are directed to the correct server */
  17. parse arg servername .
  18. address value servername
  19.  
  20.